home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 8_4.lha / 8_4 / 8_4h.c < prev    next >
Text File  |  1993-08-08  |  417b  |  19 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / print all white space letters, taking into
  6. / consideration non-English alphabets, in
  7. / integer format
  8. include <limits.h>
  9. include <stream.h>
  10. include <ctype.h>
  11.  
  12. nt main(int, char**)
  13.  
  14.    for (int i = 0; i <= CHAR_MAX; i++)
  15. if (isspace(i))
  16.     cout << i << " ";
  17.    return 0;
  18.  
  19.